encoding/binary.encoder.uint64 (method)
6 uses
encoding/binary (current package)
binary.go#L593: func (e *encoder) uint64(x uint64) {
binary.go#L612: func (e *encoder) int64(x int64) { e.uint64(uint64(x)) }
binary.go#L733: e.uint64(v.Uint())
binary.go#L741: e.uint64(math.Float64bits(v.Float()))
binary.go#L752: e.uint64(math.Float64bits(real(x)))
binary.go#L753: e.uint64(math.Float64bits(imag(x)))
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |